Lazy(T) Constructor

Task Parallel System.Threading

Initializes a new instance of the Lazy<(Of <(T>)>) class that uses T's default constructor for lazy initialization.

Namespace:  System
Assembly:  System.Threading (in System.Threading.dll)

Syntax

Visual Basic (Declaration)
Public Sub New
C#
public Lazy()

Remarks

An instance created with this constructor may be used concurrently from multiple threads.

See Also